<html>
<head>
<title>Variable Declaration through script</title>
</head>
<body>
<script type="text/javascript">
var a;
var b;
var c;
a=10;
b=20;
c=a*b;
document.write("<font face=Garmond size=4 color=green><i>"+"The value of a is "+a+"</font></i>");
document.write("<br>");
document.write("<font face=Garmond size=5 color=blue><u>"+"The value of b is "+b+"</font></u>");
document.write("<br>");
document.write("<font face=Garmond size=3 color=red><b>"+"The value of c is "+c+"</font></b>");
</script>
</body>
</html>
